Add TAL-Reverb-II plugin to test
[juce-lv2.git] / juce / source / extras / example projects / Source / MainComponent.h
blobc2d5f670fd0109a7ab685b02803c94c9c92ac9be
1 /*
2 ==============================================================================
4 This is an automatically generated file created by the Jucer!
6 Creation date: 1 May 2011 12:12:59pm
8 Be careful when adding custom code to these files, as only the code within
9 the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
10 and re-saved.
12 Jucer version: 1.12
14 ------------------------------------------------------------------------------
16 The Jucer is part of the JUCE library - "Jules' Utility Class Extensions"
17 Copyright 2004-6 by Raw Material Software ltd.
19 ==============================================================================
22 #ifndef __JUCER_HEADER_MAINCOMPONENT_MAINCOMPONENT_5ACBBA44__
23 #define __JUCER_HEADER_MAINCOMPONENT_MAINCOMPONENT_5ACBBA44__
25 //[Headers] -- You can add your own extra header files here --
26 #include "../JuceLibraryCode/JuceHeader.h"
27 //[/Headers]
31 //==============================================================================
32 /**
33 //[Comments]
34 An auto-generated component, created by the Jucer.
36 Describe your class and how it works here!
37 //[/Comments]
39 class MainComponent : public Component,
40 public ButtonListener
42 public:
43 //==============================================================================
44 MainComponent ();
45 ~MainComponent();
47 //==============================================================================
48 //[UserMethods] -- You can add your own custom methods in this section.
49 //[/UserMethods]
51 void paint (Graphics& g);
52 void resized();
53 void buttonClicked (Button* buttonThatWasClicked);
57 //==============================================================================
58 juce_UseDebuggingNewOperator
60 private:
61 //[UserVariables] -- You can add your own custom variables in this section.
62 //[/UserVariables]
64 //==============================================================================
65 Label* helloWorldLabel;
66 TextButton* quitButton;
67 Path internalPath1;
70 //==============================================================================
71 // (prevent copy constructor and operator= being generated..)
72 MainComponent (const MainComponent&);
73 const MainComponent& operator= (const MainComponent&);
77 #endif // __JUCER_HEADER_MAINCOMPONENT_MAINCOMPONENT_5ACBBA44__